home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / cmqck102.zip / CIMQUICK.DOC < prev    next >
Text File  |  1993-01-17  |  7KB  |  132 lines

  1.                            CIMQUICK 1.02
  2.  
  3.                Copyright (c) 1991-1992 by Jonathan Wayne
  4.  
  5.                     Compuserve ID 71640,345
  6.  
  7. CIMQUICK is a small freeware utility that will convert a CIM stock quotes
  8. file into a format suitable for Quicken to import.  Simply type in
  9.  
  10.         cimquick inputfilename > outputfilename
  11.  
  12. where inputfilename is the name (and path if it isn't in the current
  13. directory) of the CIM quotes file and outputfilename is the name of the
  14. file that you want to create for importing into Quicken.  For example,
  15.  
  16.         cimquick \cim\untitled.txt > \quicken\import.txt
  17.  
  18. will use the CIM quotes file "untitled.txt" in the \cim subdirectory and
  19. will create the file "import.txt" in the \quicken subdirectory.  If you
  20. leave out the output file name, the output will go to the screen.  This can
  21. be useful if you wish to preview what CIMQUICK would create.
  22.  
  23. The output (created) file consists of stock symbols and closing prices, one
  24. set per line.  You can then import the file "import.txt" by typing in the
  25. file name in the "Import Price Data" window (again, you must supply the
  26. complete path if it isn't in the current directory.)  This is invoked by
  27. first selecting Update Prices from the Activities menu when in an
  28. investment register, and then selecting Import Prices from the Print/Acct
  29. menu (a quicker way is to press <Ctrl-U> to get to the Update Menu and then
  30. pressing <Ctrl-I> to get to the Import Price window.  See the section in
  31. the Quicken 5 manual under "Importing Security Prices" for more detail.
  32.  
  33. Note that CIMQUICK does not supply any dates in the output file. You should
  34. therefore change the date of the quotes file in the "Import Price Data"
  35. window if it is other than the current date.
  36.  
  37. If you type in the command
  38.  
  39.         cimquick
  40.  
  41. by itself, you will see a help screen similar to, but more abbreviated
  42. than, this document.
  43.  
  44. IMPORTANT: The input (captured) file MUST adhere to certain requirements.
  45. Besides the formatting requirements mentioned below, it must be plain text
  46. file.  Don't modify it with a word processor and expect CIMQUICK to work.
  47. Plain text editors are ok, but remember that it is possible to crash your
  48. machine if the input file deviates from what CIMQUICK expects.  Some
  49. precautions have been taken to avoid possible problems, but it is your
  50. responsibility to ensure that your input file adheres to program
  51. specifications.
  52.  
  53. ALSO IMPORTANT: Don't use the same name for the original and new files.
  54. Doing so may destroy the original before the program completes!
  55.  
  56. Note 1:  If you use other communication programs to access Compuserve, you
  57. can also use CIMQUICK by capturing a file output by the "qquote" service.
  58. Just make sure that you specify the stock symbol as the first field and the
  59. closing price as the fifth field.  For example, use:
  60.  
  61.         /ITEMS=1,2,3,4,5
  62.  
  63. There must not be spaces within any of the first five fields, since
  64. CIMQUICK basically parses by spaces.  So if you capture the full stock
  65. name, it should be after the fifth field.
  66.  
  67. Note 2:  You can also use the file created by CIMQUICK to import into Lotus
  68. 1-2-3 and other spreadsheets.  I have a master file that contains all
  69. stocks and prices which is referenced by other spreadsheets.  A NDOS alias
  70. (you can also use CED or a batch file) does the following:
  71.  
  72.        1) Runs the following Procomm script
  73.            ; logon commands here
  74.            DOS "del c:\lotus\wk1\stock.raw"   ; delete the old quotes file
  75.            TRANSMIT "go qquote!"              ; go to the qquote section
  76.            WAITFOR "Issue:" 45                ; wait for the Issue prompt
  77.            TRANSMIT "/ITEMS=1,3,4,5,6,2!"     ; items specifier (see above)
  78.            WAITFOR "Issue:" 10                ; wait for the Issue prompt
  79.            TRANSMIT "@quotes!"                ; transmit qquote symbols file
  80.            LOG OPEN "c:\lotus\wk1\stock.raw"  ; capture output to file
  81.            WAITFOR "Issue:" 75                ; wait for the Issue prompt
  82.            LOG CLOSE                          ; close output file
  83.            ; logoff commands here
  84.        2) Prepares the quotes file, "stock.dat"
  85.            CIMQUICK \lotus\wk1\stock.raw \lotus\wk1\stock.dat
  86.        3) Starts 123 (and loads master.wk1 using "stackey" commands)
  87.        4) Imports the stock.dat file with the following macro
  88.           {goto}B3~                    - go to the proper place to import file
  89.           /finstock.dat~               - this imports stock.dat
  90.           /rnlr.{end}{down}~           - create range names based on symbols
  91.           /fs~r/fr{NAME}               - save the file
  92.        5) My other worksheets can then reference the prices in the master.wk1
  93.        file based on the range names (but if you have other information in the
  94.        spreadsheet, it is crucial that you maintain a proper order of symbols
  95.        in your qquotes file)
  96.  
  97.  
  98.                          ETCETERA
  99.  
  100. CIMQUICK doesn't do anything weird that might mess up files, disks, the
  101. ozone layer or whatever, but just for the sake of completeness let me say
  102. that I AM NOT RESPONSIBLE for any damages, direct or incidental, that might
  103. arise out of the use of this program.  And please keep in mind that in
  104. these troubling times, one must take responsibility as a computer user to
  105. ensure that one is using and sharing only virus-free programs!
  106.  
  107. CIMQUICK is free.  No strings attached.  But if you share CIMQUICK with
  108. other individuals and bulletin boards, the documentation and executable
  109. must be distributed together, without modification.  No one is allowed any
  110. monetary compensation for disbursing this program, other than reasonable
  111. media costs.
  112.  
  113. This version (1.02) fixes a bug with certain ticker symbols.  Previously,
  114. if the quotes file had symbols with embedded spaces (e.g., "DJ 30" or "SP
  115. 500"), the wrong field would be output as the closing price. Since I never
  116. used such tickers (excuses, excuses), this escaped my attention until
  117. someone pointed it out.  Sorry.
  118.  
  119. Please feel free to criticize, comment, or suggest.  For example, until I
  120. upgrade I'd appreciate any information as to compatibility with Quicken for
  121. Windows 2.0.
  122.  
  123.         CIS email: 71640,345
  124.  
  125.         US mail:  Jonathan Wayne
  126.                   977 Byron Ave
  127.                   Elizabeth, NJ 07208
  128.  
  129. CIMQUICK is written in Borland International's Turbo C++.
  130. ===========================================================================
  131. end of documentation for CIMQUICK
  132.